home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / aix_IY51518.nasl < prev    next >
Text File  |  2005-01-14  |  1KB  |  47 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5.  
  6. if ( ! defined_func("bn_random") ) exit(0);
  7. if(description)
  8. {
  9.  script_id(14433);
  10.  script_version ("$Revision: 1.2 $");
  11.  name["english"] = "AIX 5.2 : IY51518";
  12.  
  13.  script_name(english:name["english"]);
  14.  
  15.  desc["english"] = "
  16. The remote host is missing AIX Critical Security Patch number IY51518
  17. (Stale Fibre Channel attached PDISKS after link reset).
  18.  
  19. You should install this patch for your system to be up-to-date.
  20.  
  21. Solution : http://www-912.ibm.com/eserver/support/fixes/ 
  22. Risk factor : High";
  23.  
  24.  
  25.  script_description(english:desc["english"]);
  26.  
  27.  summary["english"] = "Check for patch IY51518"; 
  28.  script_summary(english:summary["english"]);
  29.  
  30.  script_category(ACT_GATHER_INFO);
  31.  
  32.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  33.  family["english"] = "AIX Local Security Checks";
  34.  script_family(english:family["english"]);
  35.  
  36.  script_dependencies("ssh_get_info.nasl");
  37.  script_require_keys("Host/AIX/lslpp");
  38.  exit(0);
  39. }
  40.  
  41.  
  42.  
  43. include("aix.inc");
  44.  
  45.  if( aix_check_patch(release:"5.2", patch:"IY51518", package:"devices.pci.df1000f7.com.5.2.0.17") < 0 ) 
  46.    security_hole(port);
  47.